home *** CD-ROM | disk | FTP | other *** search
/ The Video Game Solution CD / The VideoGame Solution CD.iso / extra / pro54 / trazed.txt < prev   
Encoding:
Text File  |  1993-12-02  |  18.5 KB  |  447 lines

  1.                        DO IT YOURSELF STEP-BY-STEP 
  2.                           4 CRYSTALS OF TRAZERE 
  3.                             CHARACTER EDITOR
  4.                    ------------------------------------
  5.  
  6.         Why do it yourself character editor? Well, for a couple of reasons. 
  7. I have all the "hacking" skills necessary to make a character editor, but i 
  8. am not a programmer, and at this stage i don't know anyone that knows enough
  9. programming to put a quality character editor together, who is close to my 
  10. home. And two, it enables me to get the material out to the general public a 
  11. lot faster, and it should be very easy for even novice computer users to edit
  12. the game(at least most of them, anyway) because i tried to make the 
  13. instructions as easy to comprehend and follow as possible.
  14. And i feel that having the character editor as quickly as possible is 
  15. important, mainly because some of the material (such as a needed key) can help 
  16. you past a part you are truly stuck on, and after being stuck for a while you 
  17. generally lose the addictive fire towards the game. So, for these two reasons, 
  18. you are going to have to edit the character yourself, which could be an 
  19. adventure in itself, depending on your sucess or lack of it.
  20. All the data presented should be accurate(i will put a notice out if any bugs
  21. are found) and if you do not get it at first, try, try again. 
  22. REMEMBER TO EITHER ZIP YOUR SAVE GAMES UP INTO A ZIP FILE, OR COPY THEM INTO 
  23. A SEPERATE DIRECTORY, FOR COPYING OVER THE HACKED SAVE GAMES IF SOMETHING
  24. GOES WRONG!!!! This can be very important, as if you insert the data into the 
  25. wrong place, bad things can happen(such as the game not loading). This is
  26. very unlikely, but a possibility. You are most likely going to need a good 
  27. utilities program, or a text editor with the HEX EDIT function, as this is in
  28. which we are going to be performing the hacking. There is information included
  29. in this text file for editing your items(and that means EVERYTHING, including
  30. all the keys, weapons, armor, and even weird stuff like the corpses, and the 
  31. Four Crystals of Trazere!!), money(up to the hundreds of millions), 
  32. & more experience than you'll know what to do with! I didn't include things 
  33. like the magic runes, and stats(str, dex) because these can be easily affected 
  34. by the others, as in with money you can buy the runes, and with experience & 
  35. then training your character, your stats will go up. Remember to try not to 
  36. make a "super character" from the start unless you haven't finished it yet and 
  37. are starting over, as quite a bit of the fun and challenge will go out of the 
  38. game. I'm providing this material mainly for helping characters past tough 
  39. spots, but in any case its up to you what you wish to do with it. If you find 
  40. this material of some use and you are not a "hacker" then please make a small 
  41. donation($5 or so) to the address at the end of the file to cover some of the 
  42. time i spent working on this to give to you. And I invite fellow hackers to 
  43. send a disk or whatever with your latest hack description in the same detail 
  44. to me instead of a contribution. Thanks, and enjoy! 
  45. Remember, perserverance is the key to excellence! 
  46.  
  47.                               STARTING OFF
  48.                           --------------------
  49. *NOTE: The names of the characters i will be using are the generic computer
  50. generated ones that you get when you first start off, before you name change
  51. if you wish. Here is a translation of names to classes:
  52. Slyzaar: Barbarian
  53. Tunarle: Troubadour
  54. Thai-Chai: Assasin
  55. Zothen: Runemaster
  56.  
  57. First of all, you novice hackers are going to need to know a few basic things
  58. about hex editing & hacking, and i'll teach it in as basic terms as i can 
  59. manage.
  60.  
  61. FIRST THINGS FIRST: Copy your save-games onto a floppy disk, subdirectory, or 
  62. just zip them up, as a backup just in case!!!!! Then, enter a utilities or 
  63. text-editing program that has a HEX-EDIT feature(MS-DOS's 5.0 is NOT one, 
  64. PC-Tool's PC-Shell, and probably Norton Utilities are). While in the program 
  65. select the Trazere directory, and a list of Trazere's files should show up, 
  66. among them your original save games(eg:Legend07.sav). Select the save game you 
  67. wish to edit, then select the Hex-Edit command. It doesn't matter which save 
  68. game, any one will do, as all store the data in the same place. Now that you 
  69. are Hex-Editing the program, a new screen should pop up with rows of "hex" 
  70. numbers and letters two by two, and a side screen may be there as well, with 
  71. "text" in it. Sometimes the text-screen may contain actual words and sentences
  72. ,but more often then not it will be "machine language", which looks like 
  73. garbage to the uninitiated. (CAUTION, if you are far enough in the game, when 
  74. looking down the text column you may see some answers to puzzles in the game) 
  75. If you see the Hex portion then you are on the right track. It may look some 
  76. what like this(as in PC-Shell)
  77.                                File Edit
  78. (name of file) Relative Sector 0000000 Clust 00068 Disk Abs Sec 000062
  79.  
  80. 0000(0000) 1F 2E 3D 4C 07 (and so on with the hex)   (machine language, 
  81.                                                       mostly ASCII characters)
  82.          If it looks somewhat like this(the hex characters doen't matter) then 
  83. you are ready to go!
  84.  
  85. SECTORS & OFFSETS: Right about now a few of you are probably saying "What?".
  86. That is understandable because there are no reasons you would have to know 
  87. about this, unless you are a hacker or just enjoy looking at file innards in 
  88. machine language. The relative sectors of a file is how the file is split up 
  89. initially, then into smaller components with the offsets. Somewhere on your
  90. screen, (up top with PC-Shell as in example) you will see the words 
  91. "Relative Sector" or something close, followed by seven digits. The beginning
  92. of a program always starts at sector 0000000, going up as you progress through 
  93. the program. We will be doing the hacking in sector 0000000, which means you
  94. will not have to move down a screen if you are only hacking Slyzaar & Tunarle
  95. and only down one screen(but still in sector 0000000) if you wish to edit
  96. Thai-Chai and Zothen. The Offset is a set of two hex characters. The beginning 
  97. offset in the example is 1F. The next offset is 2E. The data we will be 
  98. changing, and therefore editing is the offsets. The changes will be very 
  99. unremarkable while you are hex-editing, a digit or two changed. But when you
  100. enter Trazere you will certainly notice the difference! As they say, the 
  101. proof is in the pudding. The offsets are numbered in the program, so you know
  102. which offset you need to change. The offset "number" i give you is NOT the 
  103. data you need to change, it is simply the location of the offset you need to
  104. insert the data to. The example offsets below show what i mean,
  105.  
  106. The offset below(0016, where the arrow is pointing) is the starting offset in
  107.    |             the row, thus 1F is offset 16, 2E is offset 17, 3D is offset
  108.  \ | /           18 and so on. To find the offset i am referring to, simply 
  109.    |             count across the row. Remember to be careful and double-check
  110.   \|/            as if you are mistaken then the result will not be the one
  111.    |             desired.
  112.   \ /
  113. 0016(0010) 1F 2E 3D 4C 07 
  114.  
  115. To edit the offsets, simply select the edit command from the Hex-Edit screen
  116. (in PC-Shell, at the bottom of the screen, F5 i believe, or you can click on
  117. it with your mouse, it may be different with other programs. Now, you have 
  118. enough to start, i will be helping you as we go along...
  119.  
  120.                               
  121.                                  MONEY
  122.                               -------------
  123. Ok, you will need to be in sector 0000000, as always. 
  124. First off, i will give you the list of the offsets you will need to change, 
  125. and their function...
  126. THE OFFSETS: The different player-characters have different offsets you will 
  127. be required to change, here is the list:
  128. Slyzaar(Beserker): His offsets are 70,71,72, and 73.
  129. Tunarle(Troubadour): Offsets 198, 199, 200, 201 
  130. Thai-Chai(Assasin): Offsets 326, 327, 328, 329
  131. Zothen(Runemaster): Offsets 454, 455, 456, 457
  132.  
  133. THE OFFSETS FUNCTIONS: We will use the Berserker as an example:
  134.  
  135. Offsets:   70, 71, 72, 73: 
  136. Money Data:12  34  56  78  (yours may differ, probably will) 
  137.  
  138. The first digit of offset 70 is 1 in this case. This is the one dollars column
  139. The second digit of offset 70 is 2 again. These are the tens of dollars.
  140. The first digit of offset 71 is 3. These are the hundreds of dollars.     
  141. The second digit of offset 71 is 4. These are the thousands of dollars.
  142. The first digit of offset 72 is 5. These are the tens of thousands. 
  143. The second digit of offset 72 is 6. These are the hundreds of thousands.
  144. The first digit of offset 73 is 7. These are the millions.
  145. The second digit of offset 73 is 8. These are the tens of millions.
  146.  
  147. If you are brave, you may experiment with these, inserting random numbers 
  148. into the offsets. You may not get the desired result, but nothing bad will
  149. happen as long as you stay within the given offsets. But one word about this,
  150. the numbers you insert into the offset will be different than the amount of
  151. money you then have in the game. For example, the berserker above will not
  152. necesarily have 87,564,321 dollars. Sometimes even letters are used! But for
  153. the people who want a specific amount of money, here are some examples that
  154. will work:
  155. (the examples are rounded off, if you are close, you've done it right) 
  156.  
  157. For $12,000: Insert C3(select edit, move over to the correct offset, type in,
  158.              no capitals needed, done automatically)                    
  159.              into the first offset given(in this case, 70), and 30 into the
  160.              second offset given(in this case 71).(Same rules apply for the
  161.              other amounts of money)
  162.  
  163. For $25,000: Insert 86 into the first offset, and insert 61 into the second
  164.              offset.
  165.  
  166. For $50,000: Insert 0C into the first offset, and then insert 32 into the 
  167.              second offset. 
  168.              
  169. For 70,000,000+: Insert 38 into the first offset, 96 into the second offset,
  170.              5C into the third offset, and 04 into the final offset. 
  171.              If you entered this above money amount into your berserker, the
  172.              offsets would look like this:
  173.              38 96 5C 04   the first offset being 70, second 71, third 72, and
  174.                            the fourth being 73. 
  175.  
  176.    Now load up your game and see the results(keep your fingers crossed!)
  177.  
  178.                                EXPERIENCE
  179.                              --------------
  180. The next topic we'll tackle is that of experience. You will not get extra 
  181. levels immediatly after adding experience, you will have to train as normal
  182. in the game(bring LOTS of money if you gave yourself a lot of experience)
  183. The format and technique is basically the same as in the Money section.
  184. If you have not already read the Money section, please do.
  185. OFFSETS: Slyzaar(Berserker) 74,75,76, and 77
  186.          Tunarle(Troubadour) 202, 203, 204, and 205
  187.          Thai Chai(Assasin) 330, 331, 332, and 333
  188.          Zothen(Runemaster) 458, 459, 460, and 461
  189. If you haven't noticed, these offsets are immediatly after the fourth money
  190. offset. Now, same basic technique and format in this as in with Money:
  191.  
  192. First digit, First Offset: Tens of experience points
  193. Second digit, First Offset: Hundreds of experience points
  194. First digit, Second Offset: Thousands of experience points
  195. Second digit, Second Offsets: Tens of Thousands experience points
  196. First digit, Third Offset: Hundreds of Thousands
  197. Second digit, Third Offset: Millions
  198. First digit, Fourth Offset: Tens of Millions
  199. Second digit, Fourth Offset: Hundreds of Millions
  200.  
  201. So you brave ones can explore and experiment again,but remember to stay within
  202. the offsets! And for you less adventuresome people, here are some 
  203. pre-fabricated examples, enjoy!:
  204.  
  205. 133,053 experience points for Slyzaar: 
  206. Offset 74: EE  Offset 75: 3D  Offset 76: 10  Offset 77: 00
  207.  
  208. 33,685,995 experience points for Slyzaar:
  209. Offset 74: 5F  Offset 75: 0F  Offset 76: 10  Offset 77: 10
  210.  
  211. If you people who are using the examples are feeling a bit more confident now, 
  212. you may want to experiment to try and get near where you want the total to be.
  213.  
  214.  
  215.                                  ITEMS
  216.                               -----------
  217. If you have not already read the Money portion, please do, same technique 
  218. applies here. We come now to the most lengthy part of the file, the items list
  219. ,and where to put them. I will give an explanation and example at the begining
  220. , then start the list. The original programmers have it arranged already in 
  221. order, so it should not be hard to find what you wish. This items list is 
  222. complete, you cannot get anything more than what is on here(except if you 
  223. tinker past the hex characters i give you, that can produce some humorous 
  224. although somewhat disformed results, although not actual items to be used, 
  225. just mutations and the like that do nothing except look and sound weird, 
  226. you cannot get these items in the game).
  227.  
  228. OFFSETS: Each Character has a total of 16 offsets, one for each item, the 1st
  229. offset = the 1st item carried, 2nd offset = 2nd item carried and so on.
  230.  
  231. Berserker: Offsets 42 up to & including 57
  232. Troubadour: Offsets 170 up to & including 185
  233. Assasin: Offsets 298 up to & including 313
  234. Runemaster: Offsets 426 up to & including 441
  235.  
  236. All you have to do to give yourself a certain item is:
  237. 1. Find the item
  238. 2. Insert the hex characters that are given beside the item, as done before in 
  239. the money & or experience sections into one of the offsets given. You may wish 
  240. to try and find and offset among those given which is blank(a 00)so you do not 
  241. overwrite the original item.
  242. EXAMPLE: To give your Berserker a Golden Helm(hex 02 on the list) in the first
  243. item slot, insert 02 into offset 42(the first offset). 
  244.                                
  245.                                Items List
  246.                             
  247.                             ----------------
  248. Hex           Item        
  249. ---     ----------------  
  250. 01      Helm              
  251. 02      Golden Helm            
  252. 03      Frost Helm
  253. 04      Mithril Helm
  254. 05      Blood Helm
  255. 06      Cloud Helm
  256. 07      Angel Helm
  257. 08      Dragon Helm
  258. 09      Holy Helm
  259. 0A      Winged Helm
  260. 0B      Serpent Helm
  261. 0C      Hero(n?) Helm
  262. 0D      War Helm
  263. 0E      Doom Helm
  264. 0F      Chaos Helm
  265. 10      Death Helm
  266. 11      Sun amulet
  267. 12      Moon amulet
  268. 13      Serpent amulet
  269. 14      Amber amulet
  270. 15      Dragon amulet
  271. 16      Cloud amulet
  272. 17      Leather boots
  273. 18      Iron boots
  274. 19      Elf boots
  275. 1A      Golden boots
  276. 1B      Crystal boots
  277. 1C      Cloud boots
  278. 1D      Leather buckler
  279. 1E      Buckler
  280. 1F      Arc Shield
  281. 20      Battle Bane
  282. 21      Iron Shield
  283. 22      Golden Shield
  284. 23      Bane Shield
  285. 24      Dragon Shield
  286. 25      War Shield
  287. 26      Serpent Shield
  288. 27      Heron Shield
  289. 28      Robes
  290. 29      Leathers
  291. 2A      Chain Mail
  292. 2B      Plate Mail
  293. 2C      Bracers
  294. 2D      Arcane Bracers
  295. 2E      Mithril Chain
  296. 2F      Mithril Plate
  297. 30      Stealth Bracers
  298. 31      Blood Leathers
  299. 32      Crystal Chain
  300. 33      Crystal Plate
  301. 34      Holy Crystal
  302. 35      Leather Gloves
  303. 36      Amber Ring
  304. 37      Gauntlets
  305. 38      Chaos Gloves
  306. 39      Serpent Ring
  307. 3A      Cloud Ring
  308. 3B      Dragon Ring
  309. 3C      Blood Ring
  310. 3D      Stealth Gloves
  311. 3E      Sun Ring
  312. 3F      Moon Ring
  313. 40      Mithril Gloves
  314. 41      Battle Gloves
  315. 42      Dagger
  316. 43      Shortsword
  317. 44      Staff
  318. 45      Broad Sword
  319. 46      Mithril Dagger
  320. 47      Battle Staff
  321. 48      Battle Axe
  322. 49      Mithril Blade
  323. 4A      Mithril Sword
  324. 4B      Mithril Axe
  325. 4C      Broad Axe
  326. 4D      Hero Staff
  327. 4E      Heron Blade
  328. 4F      Death Axe
  329. 50      Stealth Blade
  330. 51      Death Blade
  331. 52      Arcane Sword
  332. 53      Doom Blade
  333. 54      Blood Axe
  334. 55      Vorpal Blade
  335. 56      Slugger
  336. 57      Crystal Blade
  337. 58      Ancient Staff
  338. 59      Mystic Axe
  339. 5A      Mystic Sword
  340. 5B      Mystic Dagger
  341. 5C      Mystic Staff
  342. 5D      Bag of Gold
  343. 5E      Bag of Batwings
  344. 5F      Bag of Sulphur
  345. 60      Bag of Roots    
  346. 61      Bag of Crystals
  347. 62      Bag of Venom Sacs
  348. 63      Bag of Ugly Teeth
  349. 64      Bag of berries  
  350. 65      Bag of Fiery claws
  351. 66      Amber Staff
  352. 67      Moon Staff
  353. 68      Crystal Staff
  354. 69      Serpent Staff
  355. 6A      Sun Staff
  356. 6B      Dragon Staff
  357. 6C      Amber Wand
  358. 6D      Moon Wand
  359. 6E      Cloud Wand
  360. 6F      Dragon Wand
  361. 70      Serpent Wand
  362. 71      Sun Wand
  363. 72      Crystal Wand
  364. 73      Scroll(small heal)
  365. 74      Scroll(forward, dispell)
  366. 75      Scroll(surround, thrall)    
  367. 76      Scroll(make weapon)
  368. 77      Scroll(surround, 
  369.         paralyze)
  370. 78      Scroll(forward, 
  371.         paralyze)
  372. 79      Scroll(medium heal)
  373. 7A      Scroll(surround, damage)
  374. 7B      Scroll(Hero Scroll)
  375. 7C      Scroll(antimage, 
  376.         surround, antimage)
  377. 7D      Scroll(forward, damage)
  378. 7E      Scroll(major heal)
  379. 7F      Scroll(regeneration,
  380.         surround,regeneration)
  381. 80      Scroll(forward, disrupt)
  382. 81      Scroll(heal, surround, 
  383.         heal)
  384. 82      Scroll(forward, vivify)
  385. 83      Craven Image
  386. 84      Holy Relic
  387. 85      Skull Key
  388. 86      Iron Key
  389. 87      Silver Key
  390. 88      Bronze Key
  391. 89      Gold Key
  392. 8A      Diamond Key
  393. 8B      Crystal Key
  394. 8C      Azure Key
  395. 8D      Emerald Key
  396. 8E      Ruby Key
  397. 8F      Topaz Key
  398. 90      Ornate Key
  399. 91      Dark Key
  400. 92      Moon Key
  401. 93      UnKey
  402. 94      Permit
  403. 95      Serpent Crystal
  404. 96      Moon Crystal
  405. 97      Dragon Crystal
  406. 98      Chaos Crystal
  407. 99      Slyzaar's Corpse
  408. 9A      Tunarle's Corpse
  409. 9B      Thai-Chai's Corpse
  410. 9C      Zothen's Corpse
  411. 9D      Serpent Potion(weak)
  412. 9E      Power Potion
  413. 9F      Cloud Potion
  414. A0      Moon Potion
  415. A1      Amber Potion
  416. A2      Serpent Potion(medium)
  417. A3      Hero Potion
  418. A4      Golden Potion
  419. A5      Serpent Potion(strong)
  420. A6      Bronze Potion
  421. A7      Serpent Potion
  422.         (strongest)
  423. A8      Dragon Potion
  424. A9      Horn
  425. AA      Lyre
  426. AB      Mandolin
  427. AC      Harmonic Lyre
  428. AD      Crystal Mandolin
  429. AE      Diamond Horn
  430. AF      Battle Horn
  431. B0      Arcane Mandolin
  432. B1      Angel Harp
  433. B2      Mixing Bowl
  434.                 
  435.         Thats all folks! Hope you had a blast, and remember to please send
  436. around $5 or so to the following address, or some of your own hacking text!
  437. Thanks! 
  438.         Send to:
  439.                 Geoff Northcott
  440.                 46003 Ivy Ave.
  441.                 Sardis B.C.
  442.                 Canada
  443.                 V2R 2C5
  444.  
  445.                 And feel free to leave any correspondence on Compuserve!
  446.                 Compuserve Address: 71511,514
  447.